home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ Shortcut 1.xpl < prev    next >
Text File  |  1999-06-11  |  1KB  |  57 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 3.1"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH"="Appearance\Explorer\Shortcuts"
  5. "NAME"="Arrow"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Display arrow on shortcuts"
  8. "TEXT 2"="Display arrow on DOS-shortcuts (*.pif)"
  9. "DESCRIPTION 1"="To display the white arrow in the left corner of a shortcut, activate the first option."
  10. "DESCRIPTION 2"="To display the white arrow in the left corner of a shortcut to a DOS-program (*.pif), activate the second option."
  11. "AUTHOR"="Xteq Systems"
  12. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  13. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@gmx.net."
  14. "COMMENT 2"="Version 1.11"
  15.  
  16.  
  17.  
  18. Sub Plugin_Initialize 
  19.  s=RegReadValue("HKCR\Lnkfile\IsShortcut")
  20.  if IsEmpty(s)=false then
  21.   SetUIElement 1,true
  22.  end if
  23.  
  24.  s=RegReadValue("HKCR\piffile\IsShortcut")
  25.  if IsEmpty(s)=false then
  26.   SetUIElement 2,true
  27.  end if
  28. End Sub
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  b=GetUIElement(1)
  35.  if b=true then
  36.   Call RegWriteValue("HKCR\Lnkfile\IsShortcut","",1)
  37.  else
  38.   Call RegDeleteValue("HKCR\Lnkfile\IsShortcut")
  39.  end if
  40.  
  41.  b=GetUIElement(2)
  42.  if b=true then
  43.   Call RegWriteValue("HKCR\piffile\IsShortcut","",1)
  44.  else
  45.   Call RegDeleteValue("HKCR\piffile\IsShortcut")
  46.  end if
  47.  
  48.  Restart
  49. End Sub
  50.  
  51.  
  52. Sub Plugin_Terminate 
  53. End Sub
  54.  
  55.  
  56.  
  57.